home *** CD-ROM | disk | FTP | other *** search
/ Aminet 33 / Aminet 33 - October 1999.iso / Aminet / dev / c / GAPLib.lha / GAPLib / gaplib / Makefile < prev    next >
Encoding:
Makefile  |  1999-07-04  |  366 b   |  26 lines

  1. #
  2. # GAP-Lib (C)1998-1999 Peter Bengtsson
  3. #
  4. # libgap.a Makefile, generic
  5.  
  6. .PHONY : all
  7. .PHONY : clean
  8.  
  9. CC = gcc
  10.  
  11. OPTIMIZATION = -O2 -fstrength-reduce -fexpensive-optimizations
  12.  
  13. OPTIONS = -s -pedantic -Wall -I../include/
  14.  
  15. DEFINES = -DFPU
  16.  
  17. CFLAGS = $(CODEGEN) $(OPTIMIZATION) $(OPTIONS) $(DEFINES)
  18.  
  19. AR = ar
  20.  
  21. AROPTS = -rcsv
  22.  
  23. LIBRARY = ../lib/libgap.a
  24.  
  25. include Common.mk
  26.